Elementárne funkcie

V nasledujúcich príkladoch budeme vyšetrovať priebeh elementárnych funkcií a kresliť ich grafy.

Pri vyšetrovani priebehu každej takejto funkcie nás tu zaujímajú predovšetkým tieto informácie:

  • obor definície funkcie;
  • intervaly, na ktorých je funkcia monotónna;
  • asymptoty grafu funkcie;
  • globálne a lokálne extrémy funkcie;
  • nulové body funkcie.

Dokumentácia:

In [1]:
import numpy as np
%matplotlib inline
import matplotlib.pyplot as plt
from maux import *

Úloha

Vyšetrite priebeh a nakreslite graf funkcie $$y = \frac{x-2}{\sqrt{x^2+1}}.$$

Úloha (5 bodov)

Vyšetrite priebeh a nakreslite graf funkcie $$y = (x^2)^x.$$ Zostrojte dotyčnicu grafu funkcie v bode $x = -1$.

Úloha

Vyšetrite priebeh a nakreslite graf funkcie $$y = \sqrt[3]{x-\frac{1}{x}}.$$

Úloha (5 bodov)

Vyšetrite priebeh a nakreslite graf funkcie $$y = \sin x + \cos^3 x$$ na intervale $\langle -2 \pi, 4 \pi \rangle$.

Úloha

Vyšetrite priebeh a nakreslite graf funkcie $$y = \frac{\ln^3 x - 2}{\ln^2 x + 1}.$$

Úloha (5 bodov)

Vyšetrite priebeh a nakreslite graf funkcie $$y = \cos \ln \frac{1}{x^{10}+1}.$$

Úloha

Vyšetrite priebeh a nakreslite graf funkcie $$y = \arctan \sqrt[3]{x^2 - 1}.$$

Úloha (5 bodov)

Vyšetrite priebeh a nakreslite graf funkcie $$y = \arccos \frac{x^3}{x^6 + 1} - 1.$$ Zostrojte dotyčnicu grafu funkcie v bode $x = 2$.